home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 6954 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  791 b 

  1. Path: I980.ssi.stratus.com!not-for-mail
  2. From: davidm@ssi.stratus.com ()
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Multidimensional Arrays
  5. Date: 21 Feb 1996 05:07:05 GMT
  6. Organization: Stratus Computer Inc, Marlboro MA
  7. Message-ID: <4ge99q$8vr@transfer.stratus.com>
  8. References: <4ge3ts$2en@netnews.upenn.edu>
  9. Reply-To: David_McReynolds@vos.stratus.com
  10. NNTP-Posting-Host: i980.ssi.stratus.com
  11. X-Newsreader: TIN [UNIX 1.3 950515BETA PL0]
  12.  
  13. Russell Fradin (fradin68@futures.wharton.upenn.edu) wrote:
  14. : How can I dynamically allocate a 2 dimensional array of integers?
  15. : I tried
  16. : int **t;
  17. : t = new int[dimension1*dimension2]
  18.  
  19. Certainly not like that.  For starters you might try reading the
  20. comp.lang.c FAQ.
  21. : and looked everywhere, please help!
  22. : Russ
  23. : fradin68@wharton.upenn.edu
  24.